ByteIterator

abstract class ByteIterator : Iterator<Byte>

An iterator over a sequence of values of type Byte.

Constructors

ByteIterator
Link copied to clipboard
fun ByteIterator()

Functions

hasNext
Link copied to clipboard
abstract operator fun hasNext(): Boolean

Returns true if the iteration has more elements.

next
Link copied to clipboard
operator override fun next(): Byte

Returns the next element in the iteration.

nextByte
Link copied to clipboard
abstract fun nextByte(): Byte

Returns the next value in the sequence without boxing.